sync.readOnly.m (field)

18 uses

	sync (current package)
		map.go#L64: 	m       map[any]*entry
		map.go#L105: 	e, ok := read.m[key]
		map.go#L112: 		e, ok = read.m[key]
		map.go#L139: 	if e, ok := read.m[key]; ok && e.tryStore(&value) {
		map.go#L145: 	if e, ok := read.m[key]; ok {
		map.go#L159: 			m.read.Store(readOnly{m: read.m, amended: true})
		map.go#L203: 	if e, ok := read.m[key]; ok {
		map.go#L212: 	if e, ok := read.m[key]; ok {
		map.go#L225: 			m.read.Store(readOnly{m: read.m, amended: true})
		map.go#L271: 	e, ok := read.m[key]
		map.go#L275: 		e, ok = read.m[key]
		map.go#L334: 			read = readOnly{m: m.dirty}
		map.go#L342: 	for k, e := range read.m {
		map.go#L358: 	m.read.Store(readOnly{m: m.dirty})
		map.go#L369: 	m.dirty = make(map[any]*entry, len(read.m))
		map.go#L370: 	for k, e := range read.m {